Vcenter Deployment RemotePscSpec

Vcenter Deployment RemotePscSpec
Vcenter Deployment RemotePscSpec

The Vcenter Deployment RemotePscSpec schema contains information used to configure an external vCenter Server that registers with a remote PSC.

This schema was added in vSphere API 6.7.

JSON Example
{
    "psc_hostname": "string",
    "https_port": 0,
    "sso_admin_password": "string",
    "ssl_thumbprint": "string",
    "ssl_certificate": "string",
    "ssl_verify": false
}
string
psc_hostname
Required

The IP address or DNS resolvable name of the remote PSC to which this configuring vCenter Server will be registered to.

This property was added in vSphere API 6.7.

integer As int64 As int64
https_port
Optional

The HTTPS port of the external PSC appliance.

This property was added in vSphere API 6.7.

If missing or null, port 443 will be used.

string
sso_admin_password
Required

The SSO administrator account password.

This property was added in vSphere API 6.7.

string
ssl_thumbprint
Optional

SHA1 thumbprint of the server SSL certificate will be used for verification when ssl_verify field is set to true.

This property was added in vSphere API 6.7.

This property is only relevant if ssl_verify is missing or null or has the value true.

string
ssl_certificate
Optional

The SSL Certificate of the server that will be used for verification. The value should be a single x509 certificate encoded in PEM format. Note: sslThumbprint and sslCertificate parameters are mutually exclusive, and should never be used simultaneously.

This property was added in vSphere API 9.0.0.0.

This property is only relevant if ssl_verify is missing or null or has the value true.

boolean
ssl_verify
Optional

SSL verification should be enabled or disabled. If ssl_verify is true and and ssl_thumbprint is missing or null, the CA certificate will be used for verification. If ssl_verify is true and ssl_thumbprint is set then the thumbprint will be used for verification. No verification will be performed if ssl_verify value is set to false.

This property was added in vSphere API 6.7.

If missing or null, ssl_verify true will be used.